@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center ;
    background: #4070f4 ;
}

.container{
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius:6px ;
    padding: 30px;
    background-color: #fff;
    margin: 0 15px;
    box-shadow: 0 5px 10px rgb(0, 0,0,0.1) ;

}

.container header {
    position: relative;
    font-size: 20px; /* Changed 'font-family' to 'font-size' */
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Set a height if needed */
}



.container form{
    position:relative;
    margin-top: 16px;
    min-height: 490px;
    background-color: #fff;
}

.container form .details{
    margin-top: 30px;
}

.container form .details.ID{
    margin-top: 20px;
}

.container form .title{
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin: 6px 0;
    margin-bottom: 8px;
    color: #333;
}

.container form .fields{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

form .fields .input-field{
    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}


.input-field label{
    font-size:12 px;
    font-weight: 500;
    color: #2e2e2e;
}
.input-field input{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color:#333;
    border:1px solid #aaa ;
    border-radius: 5px;
    height: 42px;
    padding: 0 15px;
    margin: 8px 0;
}

.input-field input:is(:focus, :valid){
    box-shadow:0 3px 6px rgba(0, 0, 0, 0.13);
}  

.input-field input[type="date"]{
    color: #707070;
}

.input-field input[type="date"]:valid{
    color: #707070;
}

.container form button {
    display: block;
    margin: 0 auto; /* Center the button horizontally */
    height: 45px;
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #fff;
    background-color: #4070f4;
    transition: all 0.3s linear;
    cursor: pointer;
}

.container form button:hover {
    background-color: #265df2;
}

.container form button i {
    margin: 0 6px;
}

